home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / shared.dir / 07002_Utilities.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  5.8 KB  |  240 lines

  1. global gSICDPath, gSICurrMovie
  2.  
  3. on fileExists aFile
  4.   set vFile to FileIO(mnew, "Read", aFile)
  5.   if objectp(vFile) then
  6.     vFile(mdispose)
  7.     return 1
  8.   else
  9.     return 0
  10.   end if
  11. end
  12.  
  13. on stripCRLF aString
  14.   repeat with vI = 1 to length(aString)
  15.     set vCurrChar to char vI of aString
  16.     if (vCurrChar = numToChar(10)) or (vCurrChar = numToChar(13)) then
  17.       delete char vI of aString
  18.     end if
  19.   end repeat
  20.   return aString
  21. end
  22.  
  23. on StripChars aString, aStripChars
  24.   repeat with vI = 1 to length(aString)
  25.     set vCurrChar to char vI of aString
  26.     set vStripIt to 0
  27.     repeat with vJ = 1 to length(aStripChars)
  28.       if vCurrChar = char vJ of aStripChars then
  29.         set vStripIt to 1
  30.         exit repeat
  31.       end if
  32.     end repeat
  33.     if vStripIt then
  34.       delete char vI of aString
  35.     end if
  36.   end repeat
  37.   return aString
  38. end
  39.  
  40. on stripChars2 aString, aStripChars
  41.   set vI to 1
  42.   repeat while vI <= length(aString)
  43.     set vCurrChar to char vI of aString
  44.     set vStripIt to 0
  45.     repeat with vJ = 1 to length(aStripChars)
  46.       if vCurrChar = char vJ of aStripChars then
  47.         set vStripIt to 1
  48.         exit repeat
  49.       end if
  50.     end repeat
  51.     put vI && aString && length(aString)
  52.     if vStripIt then
  53.       delete char vI of aString
  54.       next repeat
  55.     end if
  56.     set vI to vI + 1
  57.   end repeat
  58.   return aString
  59. end
  60.  
  61. on SetCursor aCursor
  62.   if aCursor = #none then
  63.     cursor(200)
  64.   else
  65.     if aCursor = #normal then
  66.       cursor(-1)
  67.     else
  68.       if aCursor = #wait then
  69.         cursor(4)
  70.       else
  71.         if aCursor = #updown then
  72.           cursor([the number of cast "UD_CURSOR", the number of cast "UD_MASK"])
  73.         else
  74.           if aCursor = #leftright then
  75.             cursor([the number of cast "LR_CURSOR", the number of cast "LR_MASK"])
  76.           else
  77.             if aCursor = #hand then
  78.               cursor([the number of cast "HAND_CURSOR", the number of cast "HAND_MASK"])
  79.             end if
  80.           end if
  81.         end if
  82.       end if
  83.     end if
  84.   end if
  85. end
  86.  
  87. on LaunchHelp aContextID
  88.   global gSISystem, gSICDPath, gSIUtils, gSIWinHelp
  89.   puppetSound(0)
  90.   if voidp(aContextID) then
  91.     set vContextID to -1
  92.     if gSICurrMovie = "hf" then
  93.       set vContextID to 148
  94.     else
  95.       if gSICurrMovie = "iv" then
  96.         set vContextID to 149
  97.       else
  98.         if gSICurrMovie = "opt" then
  99.           set vContextID to 162
  100.         else
  101.           if gSICurrMovie = "sd" then
  102.             set vContextID to 47
  103.           else
  104.             if gSICurrMovie = "ma" then
  105.               set vContextID to 8
  106.             else
  107.               if gSICurrMovie = "th" then
  108.                 set vContextID to 147
  109.               else
  110.                 if gSICurrMovie = "tr" then
  111.                   set vContextID to 44
  112.                 else
  113.                   if gSICurrMovie = "wd" then
  114.                     set vContextID to 49
  115.                   end if
  116.                 end if
  117.               end if
  118.             end if
  119.           end if
  120.         end if
  121.       end if
  122.     end if
  123.   else
  124.     set vContextID to aContextID
  125.   end if
  126.   if gSISystem = "WIN" then
  127.     set vHWnd to gSIUtils(mGetNamedWindowHdl, "Stage")
  128.     if vContextID = -1 then
  129.       gSIWinHelp(mCall, vHWnd, gSICDPath & "sihelp.hlp", 3, 0)
  130.     else
  131.       gSIWinHelp(mCall, vHWnd, gSICDPath & "sihelp.hlp", 1, vContextID)
  132.     end if
  133.   else
  134.     if gSISystem = "MAC" then
  135.       open(gSICDPath & "sihelp.hlp", "Microsoft Help")
  136.     end if
  137.   end if
  138. end
  139.  
  140. on GetVolume
  141.   return integer(the soundLevel / 7.0 * 10)
  142. end
  143.  
  144. on SetVolume aVol
  145.   if aVol > 10 then
  146.     set aVol to 10
  147.   end if
  148.   if aVol < 0 then
  149.     set aVol to 0
  150.   end if
  151.   set aVol to integer(7.0 * (integer(aVol) * 0.10000000000000001))
  152.   set the soundLevel to aVol
  153. end
  154.  
  155. on LaunchOptions
  156.   global gMAflip, MAflavor, MAmenuList, gMAmenu, gMALev, gTHRefresh, gWDRefresh
  157.   SetCursor(#wait)
  158.   puppetSound(0)
  159.   set the fileName of window "opt" to gSICDPath & "opt"
  160.   set the visible of window "opt" to 0
  161.   set the windowType of window "opt" to 2
  162.   set the modal of window "opt" to 1
  163.   set vRect to the rect of window "opt"
  164.   set vLeft to the stageLeft + 320 - (getAt(vRect, 3) / 2)
  165.   set vRight to vLeft + getAt(vRect, 3)
  166.   set vTop to the stageTop + 240 - (getAt(vRect, 4) / 2)
  167.   set vBottom to vTop + getAt(vRect, 4)
  168.   set the rect of window "opt" to rect(vLeft, vTop, vRight, vBottom)
  169.   open(window "opt")
  170.   if gSICurrMovie = "th" then
  171.     set gTHRefresh to 1
  172.   else
  173.     if gSICurrMovie = "wd" then
  174.       set gWDRefresh to 1
  175.     end if
  176.   end if
  177.   if gSICurrMovie = "ma" then
  178.     set gMAflip to value(HSStateGet("opt", "MAFlip"))
  179.     if gMAflip = 1 then
  180.       set MAflavor to getAt(MAmenuList, 2)
  181.       set gMAmenu to the number of cast string(getAt(MAflavor, gMALev))
  182.     end if
  183.     if gMAflip = 0 then
  184.       set MAflavor to getAt(MAmenuList, 4)
  185.       set gMAmenu to the number of cast string(getAt(MAflavor, gMALev))
  186.     end if
  187.   end if
  188.   SetCursor(#normal)
  189. end
  190.  
  191. on updateAssetDB aDBCast
  192.   if not integerp(aDBCast) then
  193.     set aDBCast to the number of cast aDBCast
  194.   end if
  195.   set vDB to the text of cast aDBCast
  196.   set vMax to the number of lines in vDB
  197.   set the itemDelimiter to ","
  198.   repeat with vI = 1 to vMax
  199.     set vName to item 1 of line vI of vDB
  200.     put the number of cast vName into item 2 of line vI of vDB
  201.   end repeat
  202.   set the text of cast aDBCast to vDB
  203. end
  204.  
  205. on HideAllSprites
  206.   repeat with vI = 1 to 48
  207.     set the visible of sprite vI to 0
  208.   end repeat
  209.   updateStage()
  210. end
  211.  
  212. on ShowAllSprites
  213.   repeat with vI = 1 to 48
  214.     set the visible of sprite vI to 1
  215.   end repeat
  216.   updateStage()
  217. end
  218.  
  219. on StartBufferingEvents
  220.   global gSISystem, gSIEventQ, gSIFlush
  221.   if gSISystem = "WIN" then
  222.     if gSIEventQ(mBufferStatus) = 0 then
  223.       gSIEventQ(mBufferEvents)
  224.     end if
  225.   end if
  226. end
  227.  
  228. on EndBufferingEvents
  229.   global gSISystem, gSIEventQ, gSIFlush
  230.   if gSISystem = "WIN" then
  231.     if gSIEventQ(mBufferStatus) = 1 then
  232.       gSIEventQ(mFlushEvents)
  233.     end if
  234.   else
  235.     if gSISystem = "MAC" then
  236.       gSIFlush(mFlush)
  237.     end if
  238.   end if
  239. end
  240.